blob: 9e152eefb2984b84e33d5e7b58c6e3fa6f2127c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
import Page from '$layouts/Page.astro';
import localeStaticPaths from '$lib/localeStaticPaths';
import translate from '$i18n/translate';
import tPage from '$i18n/translations/pages/scotsounPaymentSuccessConfirmation';
import type Locale from '$types/Locale';
import { getScotsoun } from '$data/scotsoun';
import type ScotsounId from '$types/ScotsounId';
export async function getStaticPaths() {
const scotsounIds = Object.keys(getScotsoun) as `${ScotsounId}`[];
return scotsounIds.flatMap((n) =>
localeStaticPaths.map((p) => ({ ...p, params: { ...p.params, scotsounId: n } }))
);
}
const locale = Astro.params.locale as Locale;
const scotsounId = Astro.params.scotsounId as ScotsounId;
const t = translate(locale);
---
<Page title={t(tPage, { key: 'title' })}>
<section>
<h1>{t(tPage, { key: 'title' })}</h1>
<p>{t(tPage, { key: 'payment-confirmation-message', scotsounId })}</p>
<a href={`/${locale}/furthsettins/scotsoun/${scotsounId}`}>
{t(tPage, { key: 'back-button-text', scotsounId })}
</a>
</section>
</Page>
|